home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000142_notforyou@hotmail.com_Mon Mar 15 11:16:52 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.mathworks.com!fu-berlin.de!uni-berlin.de!200-193-090-137.fnsce7001.dsl.brasiltelecom.net.BR!not-for-mail
  2. From: "Henrique Seganfredo" <notforyou@hotmail.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: reducing this would help also??
  5. Date: Sun, 14 Mar 2004 22:14:24 -0300
  6. Lines: 36
  7. Message-ID: <c3304i$248qaj$1@ID-8247.news.uni-berlin.de>
  8. References: <c2tes5$228q78$1@ID-8247.news.uni-berlin.de> <QPOHps8nRH+t@cc.usu.edu>
  9. NNTP-Posting-Host: 200-193-090-137.fnsce7001.dsl.brasiltelecom.net.br (200.193.90.137)
  10. X-Trace: news.uni-berlin.de 1079313363 71592275 I 200.193.90.137 ([8247])
  11. X-Priority: 3
  12. X-MSMail-Priority: Normal
  13. X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
  14. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14852
  16.  
  17. reducing this on mssdef.h would help also??
  18.  
  19. buffsz equ 512 ; size of disk file i/o buffer (buff)
  20.  
  21.  
  22. "Joe Doupnik" <jrd@cc.usu.edu> wrote in message
  23. news:QPOHps8nRH+t@cc.usu.edu...
  24. > In article <c2tes5$228q78$1@ID-8247.news.uni-berlin.de>, "Henrique
  25. Seganfredo" <notforyou@hotmail.com> writes:
  26. > > Hello,
  27. > >
  28. > > I am trying to use MS DOS KERMIT on an old computer to receive call
  29. reports
  30. > > data from a PABX. But I noticed that if there is a power shortage and
  31. the
  32. > > computer resets or shuts down, the current data (visible on the screen)
  33. sent
  34. > > by the PABX is not recorded to disk, I can only see in the file the data
  35. > > stored from tha last time I exited Kermit correctly (Alt-X, exit). Is
  36. there
  37. > > any way to force the writing periodically or every time data comes in?
  38. > >
  39. > > Thanks,
  40. > >
  41. > > Henrique Seganfredo
  42. > -------------
  43. > File transfer data are sent straight to disk, though there is a
  44. > small amount of in-program buffering. Screen capture data goes through
  45. > a small buffer too and thence straigh to disk. The latter is governed
  46. > by item cptsiz, defined in file mssdef.h as 256 bytes; you can reduce
  47. > this and recompile if needs be.
  48. > A better suggestion is to acquire a small UPS battery backup
  49. > unit so the computer survives brief power outages.
  50. > Joe D.
  51.  
  52.  
  53.